/* FAQ Section Styles */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px;
  color: white;
}

.faq-container h1 {
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #b3b3b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container .subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 60px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  color: #4f7eff;
  flex-shrink: 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.faq-question {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

.faq-toggle {
  background: none;
  border: none;
  padding: 8px;
  width: 36px;
  height: 36px;
  color: #4f7eff;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle:hover {
  background: rgba(79, 126, 255, 0.1);
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px 0 76px;
}

.faq-answer {
  color: #888;
  font-size: 1.2rem;
  line-height: 1.6;
}

.faq-answer ul {
  margin: 16px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin: 8px 0;
}

/* Active States */
.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
  opacity: 1;
  transform: scale(1.1);
}

.faq-item.active .faq-question h3 {
  color: #4f7eff;
}

.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  opacity: 1;
  padding: 0 24px 24px 76px;
}

/* Hover Effects */
.faq-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}


//TABLET CSS

/* Tablet FAQ Overrides */
@media (min-width: 600px) and (max-width: 1024px) {
  .faq-container {
    padding: 80px 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
